Lenses from Scratch
Lenses from Scratch - School of Haskell | School of Haskell
Lens型なぜ以下のような定義なのか、Lensを再実装しながらを順を追って説明している
code:hs
type Lens a b = Functor f => a -> (b -> f b) -> f a
読んだメモ
2023/7/30 Lenses from Scratchを読む